home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mc.postinst < prev    next >
Text File  |  2009-10-25  |  573b  |  20 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure|abort-upgrade)
  7.     update-alternatives --install /usr/bin/view view /usr/bin/mcview-debian 25 \
  8.        --slave /usr/share/man/man1/view.1.gz view.1.gz /usr/share/man/man1/mcview.1.gz
  9.     update-alternatives --install /usr/bin/editor editor /usr/bin/mcedit-debian 25 \
  10.        --slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/mcedit.1.gz
  11.     ;;
  12. esac
  13.  
  14. # Automatically added by dh_installmenu
  15. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  16.     update-menus
  17. fi
  18. # End automatically added section
  19.  
  20.